-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.17 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
from setuptools import setup, find_packages
version = '0.2.0'
setup(
name='pyramid_cors',
version=version,
description="Pyramid CORS helpers",
long_description=(open("README.rst").read() + "\n\n" +
open("HISTORY.rst").read()),
classifiers=[
"Development Status :: 1 - Alpha",
"Environment :: Web Environment",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License"
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='python pyramid cors',
author='',
author_email='',
url='https://github.com/ausecocloud/pyramid_cors',
license='Apache License 2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pyramid',
],
extras_require={
'test': [
'pytest',
'pytest-cov',
],
}
)