-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
93 lines (67 loc) · 2.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
__version__ = '1.0' # identify main version of FuzzyRoutines
devStatus = '4 - Beta' # default build status, see: https://pypi.python.org/pypi?%3Aaction=list_classifiers
if 'TRAVIS_BUILD_NUMBER' in os.environ and 'TRAVIS_BRANCH' in os.environ:
print("This is TRAVIS-CI build")
print("TRAVIS_BUILD_NUMBER = {}".format(os.environ['TRAVIS_BUILD_NUMBER']))
print("TRAVIS_BRANCH = {}".format(os.environ['TRAVIS_BRANCH']))
__version__ += '.{}{}'.format(
'' if 'release' in os.environ['TRAVIS_BRANCH'] or os.environ['TRAVIS_BRANCH'] == 'master' else 'dev',
os.environ['TRAVIS_BUILD_NUMBER'],
)
devStatus = '5 - Production/Stable' if 'release' in os.environ['TRAVIS_BRANCH'] or os.environ['TRAVIS_BRANCH'] == 'master' else devStatus
else:
print("This is local build")
__version__ += '.dev0' # set version as major.minor.localbuild if local build: python setup.py install
print("FuzzyRoutines build version = {}".format(__version__))
setup(
name='fuzzyroutines',
version=__version__,
description='FuzzyRoutines library contains some routines for work with fuzzy logic operators, fuzzy datasets and fuzzy scales.',
long_description='You can see detailed user manual here: https://devopshq.github.io/FuzzyRoutines/',
license='MIT',
author='Timur Gilmullin',
author_email='tim55667757@gmail.com',
url='https://devopshq.github.io/FuzzyRoutines/',
download_url='https://github.com/devopshq/FuzzyRoutines.git',
classifiers=[
'Development Status :: {}'.format(devStatus),
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
keywords=[
'fuzzy',
'logic',
'math',
'science',
'research',
'fuzzylogic',
'fuzzyset',
],
packages=[
'fuzzyroutines',
],
setup_requires=[
],
tests_require=[
'pytest',
],
install_requires=[
],
package_data={
'': [
'./fuzzyroutines/*'
'./tests/*'
'LICENSE',
'README.md',
],
},
zip_safe=True,
)