-
Notifications
You must be signed in to change notification settings - Fork 106
/
setup.py
32 lines (29 loc) · 960 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
29
30
31
32
from setuptools import setup, find_packages
__version__ = "1.0.6"
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name="kshape",
version=__version__,
description="k-Shape",
classifiers=CLASSIFIERS,
author="Teja",
author_email="[email protected]",
packages=find_packages(),
zip_safe=True,
license="",
url="https://github.com/TheDatumOrg/kshape-python",
entry_points={},
install_requires=['numpy']
)