-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 1015 Bytes
/
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
from os import path
from setuptools import find_packages, setup
from mapping_cli import __version__
with open('requirements.txt') as f:
required = f.read().splitlines()
curdir = path.abspath(path.dirname(__file__))
with open(path.join(curdir, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="hams",
packages=find_packages(),
version=__version__,
license="GPLv3+",
description="HAMS",
long_description=long_description,
long_description_content_type="text/markdown",
author="Vaibhav Balloli, Anurag Ghosh, Harsh Vijay, Jonathan Samuel, Akshay Nambi",
author_email="[email protected]",
install_requires=required,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.8",
]
)