-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (33 loc) · 1.08 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
import setuptools
from cfaster import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as r:
requirements = r.readlines()
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
entry_points = {
'console_scripts': [
'cfaster=cfaster.__main__:main_cmd',
]
}
setuptools.setup(
name="cfaster",
version=__version__,
author="Vitor Falcão Costa",
author_email="vitorfhcosta@gmail.com",
description="A package to get all you need to start a\
programming contest as fast as possible",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vitorfhc/cfaster",
classifiers=classifiers,
packages=setuptools.find_packages(),
entry_points=entry_points,
keywords=["contest", "scraper", "tools", "codeforces", "uva"],
install_requires=requirements,
)