-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 825 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="np_chaonay",
version="1.3.0",
author="Nuttapong Punpipat",
author_email="nuttapongpunpipat@gmail.com",
description="Objects collection package by NP-chaonay",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NP-chaonay/PythonPkg-np_chaonay",
packages=setuptools.find_packages(),
classifiers=[
"Topic :: Other/Nonlisted Topic",
"Development Status :: 5 - Production/Stable",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Natural Language :: English",
],
python_requires='>=3.0',
)