-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
47 lines (42 loc) · 1.66 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
"""Python packaging."""
import os
from setuptools import setup
def read_relative_file(filename):
"""Returns contents of the given file, which path is supposed relative
to this module."""
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read().strip()
NAME = 'rst2rst'
README = read_relative_file('README.rst')
VERSION = read_relative_file(os.path.join(NAME, 'version.txt')).strip()
PACKAGES = [NAME]
REQUIRES = ['setuptools', 'docutils']
ENTRY_POINTS = {
'console_scripts': [
'rst2rst = rst2rst.scripts.rst2rst:main',
]
}
if __name__ == '__main__': # Don't run setup() when we import this module.
setup(name=NAME,
version=VERSION,
description='Transform reStructuredText documents. Standardize RST syntax',
long_description=README,
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Text Processing',
],
keywords='rst writer reStructuredText',
author='Benoît Bryon',
author_email='benoit@marmelune.net',
url='https://github.com/benoitbryon/%s' % NAME,
license='BSD',
packages=[NAME],
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
entry_points=ENTRY_POINTS)