-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.29 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
read_file = lambda filename: open(os.path.join(here, filename)).read()
read_requirements = lambda filename: read_file(filename).splitlines()
TEST_REQUIREMENTS = read_requirements('requirements-test.txt')
setup(
name='Flask-CuddlyRest',
version='0.1.15',
url='http://github.com/wuurrd/flask-cuddlyrest',
license='MIT',
author='David Buchmann',
author_email='david.buchmann@gmail.com',
maintainer='David Buchmann',
maintainer_email='david.buchmann@gmail.com',
description='Flask restful API framework for MongoDB/MongoEngine',
long_description=read_file('README.md'),
packages=find_packages(),
package_data={'flask_cuddlyrest.ext': ['templates/*rst']},
zip_safe=False,
install_requires=read_requirements('requirements.txt'),
tests_require=TEST_REQUIREMENTS,
extras_require={
'test': TEST_REQUIREMENTS,
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)