-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (31 loc) · 1.02 KB
/
setup.py
File metadata and controls
31 lines (31 loc) · 1.02 KB
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
from setuptools import setup, find_packages
version=__import__('resweb').__version__
setup(
name='resweb',
version=version,
description='Pyres web interface',
author='Matt George',
author_email='mgeorge@gmail.com',
maintainer='Matt George',
license='MIT',
url='http://github.com/Pyres/resweb',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
download_url='http://pypi.python.org/packages/source/p/resweb/resweb-%s.tar.gz' % version,
include_package_data=True,
package_data={'resweb': ['templates/*.mustache','static/*']},
install_requires=[
'pyres>=1.3',
'flask'
],
entry_points = """\
[console_scripts]
resweb=resweb.core:main
""",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)