-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 680 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (23 loc) · 680 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
from setuptools import setup, find_packages
SCRIPTS = [
'input_tool/input-generator',
'input_tool/input-sample',
'input_tool/input-tester'
]
DESCRIPTION = ('Tool which simplifies creating and testing inputs for'
' programming contests.')
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='input-tool',
version='1.1.0',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=('tests',)),
include_package_data=True,
scripts=SCRIPTS,
classifiers=[
"Programming Language :: Python :: 3",
],
)