forked from evepraisal/python-evepraisal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 888 Bytes
/
Copy pathsetup.py
File metadata and controls
39 lines (34 loc) · 888 Bytes
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
import os
from setuptools import setup, find_packages
description = ("Tool to use in Eve Online for evaluating the value of items "
"sourced from various places within the game and out.")
if os.path.exists('README.rst'):
f = open('README.rst')
try:
long_description = f.read()
finally:
f.close()
else:
long_description = description
setup(
name='evepraisal',
version='2.0',
description=description,
long_description=long_description,
author='Kevin McDonald',
author_email='k3vinmcdonald@gmail.com',
packages=find_packages(exclude=["tests"]),
license='MIT',
install_requires=[
'flask',
'Flask-Cache',
'Flask-Babel',
'flask_openid',
'flask-sqlalchemy',
'sqlalchemy',
'alembic',
'pylibmc',
'evepaste',
],
zip_safe=False,
)