-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.19 KB
/
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
30
31
32
33
34
35
36
from setuptools import setup, find_packages
with open('README.md', 'r') as file:
long_description = file.read()
setup(
name='taker',
version='0.0.0a0',
author='Alexander Kernozhitsky',
author_email='[email protected]',
description='Taker is a system to prepare competitive programming '
'problems',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/taker-project/taker_v0',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
package_dir={'': 'src'},
packages=find_packages('src', exclude=['pytest_fixtures', '*.tests',
'*.tests.*']),
install_requires=['colorama', 'appdirs'],
entry_points={
'console_scripts': [
'take = taker:main'
]
}
)