-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
63 lines (42 loc) · 1.34 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
from acedit.install_entry import InstallEntry
with open('requirements.txt', 'r') as f:
requirements = [line.strip() for line in f.readlines()]
with open('README.rst', 'rb') as f:
long_description = f.read().decode('utf-8')
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name='ACedIt',
packages=['acedit'],
version='1.2.1',
description='Download and test against sample test cases from any competitive programming website',
long_description=long_description,
author='Deep Bhattacharyya',
python_requires='>=3.5',
install_requires=requirements,
entry_points={
'console_scripts': ['acedit=acedit.main:main']
},
zip_safe=False,
url='https://github.com/coderick14/ACedIt',
keywords=['sample test cases', 'downloader', 'competitive programming'],
cmdclass={
'install': InstallEntry,
'develop': InstallEntry,
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Education',
],
license='MIT License'
)