-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (37 loc) · 1.03 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
from setuptools import setup, find_packages
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
setup(
name='openrxn',
version='0.0.1',
author="Alex Dickson",
author_email="[email protected]",
description="OpenRXN",
license="MIT",
url="https://gitlab.com/ADicksonLab/OpenRXN.git",
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3'
],
# package
packages=find_packages(where='src'),
package_dir={'' : 'src'},
# if this is true then the package_data won't be included in the
# dist. Use MANIFEST.in for this
include_package_data=True,
# SNIPPET: this is a general way to do this
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
entry_points = {},
install_requires=[
'numpy',
'scipy',
'networkx',
'pint',
'pandas',
'matplotlib'
],
)