forked from Zhiyuan-Wu/apdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1.02 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
from setuptools import setup
import setuptools
from apdt import __version__
with open("README.md") as fh:
long_description = fh.read()
if __name__ == '__main__':
setup(name = 'apdt',
version = __version__,
description = 'apdt',
author = 'Zhiyuan-Wu',
author_email = '[email protected]',
url = 'https://github.com/Zhiyuan-Wu/apdt',
maintainer = 'Zhiyuan-Wu',
maintainer_email = '[email protected]',
long_description = long_description,
long_description_content_type="text/markdown",
install_requires = ['numpy', 'pandas', 'sklearn'],
license = 'Apache License Version 2.0',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers = (
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
),
)