This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
75 lines (63 loc) · 2.14 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
#!/usr/bin/env python
import sys
import os
from setuptools import setup, find_packages
from extensions import ext
import dynts
def read(name):
filename = os.path.join(os.path.dirname(__file__), name)
with open(filename) as fp:
return fp.read()
def requirements(name):
install_requires = []
dependency_links = []
for line in read(name).split('\n'):
if line.startswith('-e '):
link = line[3:].strip()
if link == '.':
continue
dependency_links.append(link)
line = link.split('=')[1]
line = line.strip()
if line:
install_requires.append(line)
return install_requires, dependency_links
meta = dict(
version=dynts.__version__,
description=dynts.__doc__,
name='dynts',
author="Luca Sbardella",
author_email="luca@quantmind.com",
maintainer_email="luca@quantmind.com",
url="/~https://github.com/quantmind/dynts",
license="BSD",
long_description=read('README.rst'),
include_package_data=True,
setup_requires=['numpy', 'pulsar', 'wheel'],
packages=find_packages(include=['dynts', 'dynts.*']),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Office/Business :: Financial'
]
)
if __name__ == '__main__':
command = sys.argv[1] if len(sys.argv) > 1 else None
if command == 'agile':
from agile.app import AgileManager
AgileManager(description='Release manager for dynts',
argv=sys.argv[2:]).start()
else:
meta.update(ext.params())
setup(**meta)