-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (32 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
setup_requirements = ["pytest-runner"]
setup(
name="python-humble-utils",
version="3.1.0",
url="https://github.com/webyneter/python-humble-utils",
description="Python utils for everyday use.",
long_description=readme + "\n\n" + history,
author="Nikita P. Shupeyko",
author_email="[email protected]",
packages=find_packages(include=["python_humble_utils"]),
include_package_data=True,
setup_requires=setup_requirements,
zip_safe=False,
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["python", "humble", "utility", "utilities", "util", "utils", "helper", "helpers"],
)