-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (43 loc) · 1.24 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
import sys
from setuptools import find_packages, setup
def main():
install_requires = [
'click',
'regex',
'treelib',
'lxml'
]
if sys.platform == 'win32':
install_requires.append('colorama')
setup_requires = ['setuptools_scm']
if {'pytest', 'test', 'ptr'}.intersection(sys.argv):
setup_requires.append('pytest-runner')
tests_require = ['pytest']
setup(
name='fbSAT',
description='fbSAT',
url='https://github.com/ctlab/fbSAT',
author='Konstantin Chukharev',
author_email='[email protected]',
license='GNU GPLv3',
python_requires='>=3.6',
package_dir={'': 'src'},
packages=find_packages('src'),
use_scm_version={
'write_to': 'src/fbsat/version.py',
'version_scheme': 'post-release',
# 'local_scheme': lambda _: '',
'local_scheme': 'dirty-tag',
},
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
entry_points={
'console_scripts': [
'fbsat = fbsat:cli',
]
},
zip_safe=False,
)
if __name__ == '__main__':
main()