forked from paxswill/evesrp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·88 lines (84 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
from setuptools import setup
import re
with open('evesrp/__init__.py', 'r') as f:
init_contents = ''
for line in f:
init_contents += line + '\n'
version = re.search(r'^__version__ *= *u?[\'"]([^\'"]*)[\'"]', init_contents,
re.MULTILINE)
if version:
version = version.group(1)
else:
raise Exception(u"Unable to find __version__ in evesrp/__init__.py")
setup(
name=u'EVE-SRP',
version=version,
description=u'EVE Ship Replacement Program Helper',
author=u'Will Ross',
author_email=u'paxswill@paxswill.com',
url=u'https://github.com/paxswill/evesrp',
packages=[
'evesrp',
'evesrp.auth',
'evesrp.views',
'evesrp.util',
'evesrp.migrate',
'evesrp.migrate.versions',
],
package_data={
'evesrp': [
'static/favicon.ico',
'static/css/*.css',
'static/css/*.css.map',
'static/js/evesrp.min.js',
'static/js/evesrp.min.js.map',
'static/fonts/fontawesome-webfont.*',
'static/ZeroClipboard.swf',
'templates/*.html',
'templates/*.xml',
'migrate/alembic.ini',
'migrate/script.py.mako',
],
},
classifiers=[
u'Development Status :: 4 - Beta',
u'Framework :: Flask',
u'License :: OSI Approved :: BSD License',
u'Programming Language :: Python :: 3',
u'Programming Language :: Python :: 2',
u'Topic :: Games/Entertainment',
],
dependency_links=[
u'https://github.com/bravecollective/api/tarball/develop#egg=brave.api'
],
install_requires=[
'Flask>=0.10.1',
'Flask-Login==0.2.10',
'Flask-Migrate>=1.2.0',
'Flask-Script==2.0.5',
'Flask-SQLAlchemy==1.0',
'Flask-WTF==0.9.4',
'SQLAlchemy>=0.9.4',
'Werkzeug>=0.9.4',
'WTForms==1.0.5',
'alembic>=0.6.5',
'requests==2.2.1',
'six==1.7.3',
],
entry_points={
'console_scripts': [
'evesrp = evesrp.util.manage:main',
],
},
extras_require={
'BraveCore': [
'brave.api',
'ecdsa==0.11',
],
'OAuth': [
'Flask-OAuthlib>=0.7.0',
],
},
zip_safe=False,
)