-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.28 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
import setuptools
with open("README_PyPi.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="testdatatable",
version="0.2.5",
author="damies13",
author_email="[email protected]",
description="TestDataTable",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/damies13/TestDataTable",
packages=setuptools.find_packages(),
# packages=setuptools.find_packages(include=['configparser', 'setuptools', 'HTTPServer', 'sqlite3worker']),
# packages=setuptools.find_packages(include=['configparser', 'HTTPServer', 'sqlite3worker']),
install_requires=['configparser', 'HTTPServer', 'sqlite3worker'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
project_urls={
'Getting Help': 'https://github.com/damies13/TestDataTable#getting-help',
'Say Thanks!': 'https://github.com/damies13/TestDataTable#donations',
'Source': 'https://github.com/damies13/TestDataTable',
},
entry_points = {'console_scripts': ['testdatatable = testdatatable.TestDataTable:TestDataTable']},
)