-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 981 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
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.1.3'
setup(
name='reformer',
version=VERSION,
py_modules=['reformer'],
url='https://github.com/Krukov/reformer',
download_url='https://github.com/Krukov/reformer/tarball/' + VERSION,
license='MIT',
author='Dmitry Krukov',
author_email='[email protected]',
description='The tool for creating notes',
long_description=open('README.rst').read(),
keywords='reformat format transform serializer schema',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)