-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.32 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (51 loc) · 1.32 KB
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
from os.path import join, dirname
from setuptools import setup, find_packages
def get_version():
fname = join(dirname(__file__), "src/temporal_structural_walk/__version__.py")
with open(fname) as f:
ldict = {}
code = f.read()
exec(code, globals(), ldict) # version defined here
return ldict['version']
package_name = "temporal_structural_walk"
setup(name=package_name,
version=get_version(),
description='',
long_description=open('README.md').read().strip(),
author='',
author_email='',
url='',
package_dir={'': 'src'},
packages=find_packages('src'),
py_modules=[package_name],
install_requires=[
'stellargraph==1.2.1',
'gensim==4.3.2',
'scikit-learn==1.3.2',
'tqdm',
'numpy',
'pandas',
'scipy==1.10.1',
'chardet==5.2.0',
],
extras_require={
'dev': [
'ipykernel',
'mypy',
'autopep8',
'pytest',
'pytest-cov'
],
'test': [
'pytest',
'pytest-cov'
]
},
license='Private',
zip_safe=False,
keywords='',
classifiers=[''],
package_data={
package_name: ['py.typed'],
}
)