-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (35 loc) · 1.05 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
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='flexibletopology',
version='0.0.1a.dev0',
author="Nazanin Donyapour, Alex Dickson",
author_email="[email protected]",
description="flexibletopology",
license="MIT",
url="https://gitlab.com/ADicksonLab/flexibletopology.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',
'scikit-learn',
'h5py',
],
)