-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (42 loc) · 1.43 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import setuptools
from version import version as this_version
this_directory = os.path.abspath(os.path.dirname(__file__))
version_path = os.path.join(this_directory, 'MGSurvE', '_version.py')
print(this_version)
with open(version_path, 'wt') as fversion:
fversion.write('__version__ = "'+this_version+'"')
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='MGSurvE',
version=this_version,
url='https://github.com/Chipdelmal/MGSurvE',
author='Hector M. Sanchez C.',
author_email='sanchez.hmsc@berkeley.edu',
description="MGSurvE",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
'deap', 'numpy', 'scikit-learn', 'scipy', 'matplotlib', 'sympy',
'ipython', 'jupyter', 'pandas', 'compress-pickle', 'dill',
'vincenty', 'haversine', 'networkx', 'pointpats', 'libpysal',
'geopandas', 'sympy', 'termcolor', 'tqdm'
],
extras_require={
'dev': [
'pytest', 'ipykernel', 'jupyter',
'twine', 'wheel',
'sphinx', 'sphinx_rtd_theme', 'chardet'
],
},
license='GPLv3',
classifiers=[
'Programming Language :: Python :: 3.9',
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
)