-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 833 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
33
from setuptools import setup, find_packages
VERSION = "1.6.0"
DESCRIPTION = (
"Basic tools I feel are missing in the standard Python distribution."
)
def get_read_me():
with open("README.md", "r") as f:
return f.read()
# Setting up
setup(
name="mypytoolkit",
version=VERSION,
author="Prerit Das",
author_email="<preritdas@gmail.com>",
description=DESCRIPTION,
long_description=get_read_me(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires = ['DateTime', 'matplotlib', 'numpy', 'pandas'],
keywords=["python", "tools"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)