-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 906 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 906 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
from setuptools import setup, find_packages
VERSION = '1.0'
DESCRIPTION = 'A really simple Python library to do some math operations'
LONG_DESCRIPTION = 'A really simple Python library to do some math operations'
# Setting up
setup(
name="pymathtools",
version=VERSION,
author="Sean-e",
author_email="<seane410@gmail.com>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
py_modules=['pymathtools'], # Include pythonryd.py directly as a module
install_requires=[], # Add any additional packages that need to be installed along with your package. Eg: 'requests'
keywords=['python', 'api'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)