-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·40 lines (34 loc) · 1.06 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
import unittest
import os
import sys
from setuptools import setup, find_packages
from distutils.core import Command
from deep_space_trader import __version__ as version
HERE = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(HERE, "README.rst")
REQFILE = 'requirements.txt'
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
with open(README, 'r') as f:
long_description = f.read()
with open(REQFILE, 'r') as fh:
dependencies = fh.readlines()
setup(
name='deep_space_trader',
version=version,
description=('Dumb space game'),
long_description=long_description,
url='http://github.com/eriknyquist/deep_space_trader',
author='Erik Nyquist',
author_email='[email protected]',
license='Apache 2.0',
install_requires=dependencies,
packages=['deep_space_trader'],
package_data={'deep_space_trader':['images/*']},
include_package_data=True,
zip_safe=False
)