-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (29 loc) · 914 Bytes
/
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
from setuptools import setup, find_packages, Extension
import os
cutil = Extension('cutil', sources=['cutil/cutilmodule.c'])
cwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cwd, 'README.md')) as df:
DESC = df.read()
with open(os.path.join(cwd, 'requirements.txt')) as rf:
install_requires = rf.read()
setup(
name='statsimi',
author='Patrick Brosi',
author_email='brosi@cs.uni-freiburg.de',
url="https://github.com/ad-freiburg/statsimi",
long_description=DESC,
long_description_content_type='text/markdown',
version='0.0.1',
packages=find_packages(),
license='GPLv3',
test_suite="statsimi.test_doctests",
ext_modules=[cutil],
setup_requires=['wheel'],
install_requires=install_requires,
include_package_data = True,
entry_points={
'console_scripts': [
'statsimi = statsimi:main',
]
}
)