-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.44 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.44 KB
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
38
39
40
from setuptools import setup, find_packages
VERSION = "1.0.2"
SHORT_DESCRIPTION = "Twitter X-Client-Transaction-Id generator written in python."
with open("requirements.txt") as file:
dependencies = file.read().splitlines()
with open("README.md", "r") as file:
DESCRIPTION = file.read()
setup(
name="xclienttransaction",
version=VERSION,
description=SHORT_DESCRIPTION,
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
author="Sarabjit Dhiman",
author_email="[email protected]",
license="MIT",
url="https://github.com/iSarabjitDhiman/XClientTransaction",
packages=find_packages(),
keywords=["XClientTransaction", "twitter transaction id", "client transaction id twitter",
"tid generator", "x client transaction id generator",
"xid twitter", "tweeterpy"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
],
install_requires=dependencies,
python_requires=">=3"
)