-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
25 lines (24 loc) · 926 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 os
import setuptools
setuptools.setup(
name="tgmb",
version="0.0.0" + 'b' + os.environ["PKG_VER"].replace('refs/tags/v', '').replace('.', '').replace('b', ''),
author="SomesH S",
author_email="[email protected]",
description="Predecessor to `tgmb`",
long_description=open('README.md', 'rt', encoding='utf-8').read(),
long_description_content_type="text/markdown",
url="https://github.com/ksssomesh12/tgmb-beta",
project_urls={
"Bug Tracker": "https://github.com/ksssomesh12/tgmb-beta/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta"
],
packages=setuptools.find_packages(),
install_requires=open('requirements.txt', 'rt', encoding='utf-8').read().split('\n'),
python_requires=">=3.8"
)