-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
73 lines (64 loc) · 2.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join
import re
from setuptools import setup, find_packages
PYPI_RST_FILTERS = (
# Replace code-blocks
(r'\.\.\s? code-block::\s*(\w|\+)+', '::'),
# Remove travis ci badge
(r'.*travis-ci\.org/.*', ''),
# Remove pypip.in badges
(r'.*pypip\.in/.*', ''),
(r'.*crate\.io/.*', ''),
(r'.*coveralls\.io/.*', ''),
)
def rst(filename):
'''
Load rst file and sanitize it for PyPI.
Remove unsupported github tags:
- code-block directive
- travis ci build badge
'''
content = open(filename).read()
for regex, replacement in PYPI_RST_FILTERS:
content = re.sub(regex, replacement, content)
return content
def pip(filename):
'''Parse pip requirement file and transform it to setuptools requirements'''
path = join('requirements', filename)
return [line for line in open(path).readlines() if not line.startswith('-e')]
long_description = '\n'.join((
rst('README.rst'),
rst('CHANGELOG.rst'),
''
))
setup(
name='django-ember',
version=__import__('ember').__version__,
description=__import__('ember').__description__,
long_description=long_description,
url='https://github.com/noirbizarre/django-ember',
download_url='http://pypi.python.org/pypi/django-ember',
author='Axel Haustant',
author_email='noirbizarre+django@gmail.com',
packages=find_packages(),
include_package_data=True,
install_requires=pip('install.pip'),
tests_require=pip('test.pip'),
use_2to3=True,
license='LGPL',
classifiers=[
"Framework :: Django",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: System :: Software Distribution",
"Programming Language :: Python",
'Programming Language :: Python :: 3',
"Topic :: Software Development :: Libraries :: Python Modules",
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
],
)