-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 1.03 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
29
30
31
32
33
34
35
36
37
38
from setuptools import find_packages, setup
from smawe_tools.__version__ import version
with open("README.md", "r", encoding="utf-8") as fp:
LONG_DESCRIPTION = fp.read()
URL = "https://github.com/Smawexi/SmaweTools"
NAME = 'smawe_tools'
DESCRIPTION = 'small tool'
EMAIL = '[email protected]'
AUTHOR = 'Samwe'
REQUIRES_PYTHON = '>=3.5.0'
about = {"__version__": version}
setup(
name=NAME,
version=about['__version__'],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url=URL,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
packages=find_packages(exclude=('tests',)),
install_requires=['colorama', 'requests'],
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
)