-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 602 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import setuptools
with open('README.md','r') as f:
long_description = f.read()
setuptools.setup(
name = 'NumberTypes',
version='0.01',
author = 'Aryansh Gupta (AryanshDev)',
long_description = long_description,
long_description_content_type = 'text/markdown',
author_email = 'Aryanshappmaker@gmail.com',
description = 'Python Module to identify type of a number quickly and easily',
py_modules = ["numbertypes"],
package_dir = {'':'src'},
license='MIT',
python_requires = '>=3.1',
keywords=['numbers','helper','number types','number type','math']
)