-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (43 loc) · 1.49 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
import os
import re
from setuptools import setup, find_packages
def read(*parts):
with open(os.path.join(*parts), 'rt') as f:
return f.read().strip()
def read_version():
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'")
init_py = os.path.join(os.path.dirname(__file__),
'cantal_tools', '__init__.py')
with open(init_py) as f:
for line in f:
match = regexp.match(line)
if match is not None:
return match.group(1)
else:
raise RuntimeError(
'Cannot find version in cantal_tools/__init__.py')
install_requires = ['cantal']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
]
setup(name='cantal_tools',
version=read_version(),
description=("High level cantal tools"),
long_description=read('README.rst'),
classifiers=classifiers,
platforms=["POSIX"],
author="Alexey Popravka",
author_email="[email protected]",
url="https://github.com/popravich/cantal_tools",
license="MIT",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
include_package_data=True,
)