-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (25 loc) · 996 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
26
27
28
29
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/ngocjr7/codeforces-management-tools/issues',
'Documentation': 'https://github.com/ngocjr7/codeforces-management-tools/blob/master/README.md',
'Source Code': 'https://github.com/ngocjr7/codeforces-management-tools'
}
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(name='conmato',
description='A Command Line Interface for Codeforces Management Tools',
author='Ngoc Bui',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls=PROJECT_URLS,
author_email='[email protected]',
version='0.0.5',
entry_points='''
[console_scripts]
conmato=conmato.cli:cli
''',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.6')