-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.07 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.07 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
from setuptools import setup, Extension, find_packages
setup(
name='RoundCreator',
packages=['RoundCreator'],
version='2.1.6',
description='A tool that creates a programming contest folder structure',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author='Sergio Rodriguez Guasch',
author_email='sergio.r.guasch@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: C++',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Utilities'
],
entry_points={
'console_scripts': [
'RoundCreator=RoundCreator.RoundCreator:main'
]
},
url='https://github.com/srgrr/RoundCreator'
)