-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1011 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1011 Bytes
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
about = {}
with open("mtalg/__about__.py") as f:
exec(f.read(), about)
with open("mtalg/requirements.txt") as f:
requirements = f.read().splitlines()
setuptools.setup(
name="mtalg",
version=about['__version__'],
author=about['__authors__'],
author_email=about['__email__'],
description=about['__about__'],
url=about['__url__'],
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=requirements,
extras_require={'full': ['numba']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
project_urls={
'Documentation': 'https://mtalg.readthedocs.io/',
'GitHub': 'https://github.com/WWakker/mtalg/',
},
)