Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| from setuptools import setup, find_packages | |
| requires = [ | |
| 'clld>=3.2.0', | |
| 'clldmpg>=2.0.0', | |
| ] | |
| tests_require = [ | |
| 'WebTest >= 1.3.1', # py3 compat | |
| 'mock>=2.0', | |
| ] | |
| setup(name='asjp', | |
| version='0.0', | |
| description='asjp', | |
| long_description='', | |
| classifiers=[ | |
| "Programming Language :: Python", | |
| "Framework :: Pyramid", | |
| "Topic :: Internet :: WWW/HTTP", | |
| "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", | |
| ], | |
| author='', | |
| author_email='', | |
| url='', | |
| keywords='web pyramid pylons', | |
| packages=find_packages(), | |
| include_package_data=True, | |
| zip_safe=False, | |
| install_requires=requires, | |
| tests_require=tests_require, | |
| test_suite="asjp", | |
| entry_points="""\ | |
| [paste.app_factory] | |
| main = asjp:main | |
| """, | |
| ) |