-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 866 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 866 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name="convert-ej",
version="1.1.7",
description="A software tool for converting problem files between electronic judges formats.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/gnramos/convert-ej",
author="Tiago de Souza Fernandes",
author_email="tiagotsf2000@gmail.com",
license="GNU GENERAL PUBLIC LICENSE",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.7",
],
packages=["convert_ej"],
include_package_data=True,
entry_points={
"console_scripts": [
"convert-ej=convert_ej.convert:main",
]
},
)