-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (29 loc) · 1.01 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
setup(name='convertit',
version='2.2.6.dev0',
description='A file conversion Web API in Pyramid',
long_description=README,
license='AGPLV3',
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Makina Corpus',
author_email='python@makina-corpus.org',
url='https://github.com/makinacorpus/convertit',
keywords='web pyramid webservice convert',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite="convertit",
entry_points="""\
[paste.app_factory]
main = convertit:main
""",
)