-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 922 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
30
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read().replace('\\_', '_')
setup(name='print_ctf',
version='1.0.4',
description='Print recent CTF contests sourced by CTFTime.org',
long_description=long_description,
author='deko2369',
author_email='[email protected]',
url='https://github.com/deko2369',
packages=find_packages(),
install_requires=['icalendar', 'pytz', 'requests'],
entry_points={
'console_scripts': [
'print_ctf = print_ctf:__main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Other Audience',
'License :: Public Domain',
'Topic :: Utilities',
'Programming Language :: Python',
],
)