11 requires = [ |
11 requires = [ |
12 'aiopyramid[gunicorn]' |
12 'aiopyramid[gunicorn]' |
13 ] |
13 ] |
14 |
14 |
15 setup(name='{{ cookiecutter.webapp_name }}', |
15 setup(name='{{ cookiecutter.webapp_name }}', |
16 version='0.0', |
16 version='1.0', |
17 description='{{ cookiecutter.project_name }}', |
17 description='Pyramid project to handle PyAMS notifications using AsyncIO websockets', |
18 long_description=README + '\n\n' + CHANGES, |
18 long_description=README + '\n\n' + CHANGES, |
19 classifiers=[ |
19 classifiers=[ |
20 "Programming Language :: Python", |
20 "Programming Language :: Python", |
21 "Framework :: Pyramid", |
21 "Framework :: Pyramid", |
22 "Topic :: Internet :: WWW/HTTP", |
22 "Topic :: Internet :: WWW/HTTP", |
23 "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", |
23 "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", |
24 ], |
24 ], |
25 author='', |
25 author='', |
26 author_email='', |
26 author_email='', |
27 url='', |
27 url='', |
28 keywords='Pyramid project using AsyncIO websockets', |
28 keywords='Pyramid PyAMS AsyncIO WebSockets', |
29 packages=find_packages(), |
29 packages=find_packages(), |
30 include_package_data=True, |
30 include_package_data=True, |
31 zip_safe=False, |
31 zip_safe=False, |
32 install_requires=requires, |
32 install_requires=requires, |
33 tests_require=requires, |
33 tests_require=requires, |