forked from RealityNet/teleparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 622 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 622 Bytes
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
import os.path
from setuptools import setup
from teleparser import VERSION
# The directory containing this file
HERE = os.path.abspath(os.path.dirname(__file__))
# The text of the README file
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
setup(
name="teleparser",
version=VERSION,
long_description_content_type="text/markdown",
long_description=README,
install_requires=["construct==2.10.68"],
packages=["teleparser"],
include_package_data=True,
entry_points={
"console_scripts": [
"teleparser = teleparser.run:main",
]
},
)