-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.39 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (39 loc) · 1.39 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
41
#!/usr/bin/env python
from os import path
from setuptools import setup
setup_requires = ['click', 'terminaltables', 'colorclass', 'requests', 'lxml', 'beautifulsoup4', 'websockets', 'pyyaml']
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name="paParser",
version="1.0.0",
description="a contest parser",
long_description=long_description,
author="palayutm",
author_email="palayutm@gmail.com",
url="https://github.com/palayutm/paParser",
license="GPL",
packages=['src'],
py_modules=['src.paParser'],
entry_points={
'console_scripts': ['pa=src.paParser:main'],
},
install_requires=setup_requires,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: SunOS/Solaris",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
]
)