-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.25 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
import glob
import setuptools
with open( "README.md", "r", encoding="utf-8" ) as fh:
long_description = fh.read( )
with open( "requirements.txt", "r", encoding="utf-8" ) as fh:
install_requires = [ x.replace( "==", ">=" ).strip( ) for x in fh.readlines( ) ]
packages = setuptools.find_packages(where='./src')
setuptools.setup(
name = "demure_logger",
version = "0.9.1",
author = "Trishkin Sergey",
author_email = "[email protected]",
description = "Simple but customize captcha generator( image + voice )",
long_description = long_description,
long_description_content_type= "text/markdown",
url = "https://github.com/grdvsng/demure_logger",
project_urls = { },
classifiers = [
'Programming Language :: Python :: 3.8',
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
include_package_data = True,
install_requires = install_requires,
package_dir = { "": "src" },
packages = packages,
python_requires = ">=3.8",
)