-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 875 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
from setuptools import find_packages, setup
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name="checkcel",
version='0.0.3',
description="Generate and validate tabulated/spreadsheet files",
author="Mateo Boudet",
author_email="[email protected]",
url="https://github.com/genouest/checkcel",
install_requires=requires,
packages=find_packages(),
long_description_content_type="text/markdown",
license='MIT',
platforms="Posix; MacOS X; Windows",
entry_points='''
[console_scripts]
checkcel=checkcel.main:main
''',
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.7",
]
)