-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
51 lines (46 loc) · 1.41 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
import os
from setuptools import setup, find_packages
from pip.req import parse_requirements
import uuid
# parse_requirements() returns generator of pip.req.InstallRequirement objects
install_reqs = parse_requirements("requirements.txt", session=uuid.uuid1())
# reqs is a list of requirement
# e.g. ['django==1.5.1', 'mezzanine==1.4.6']
reqs = [str(ir.req) for ir in install_reqs]
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
setup(
name = "showdownai",
version = "0.0.1",
author = "Vasu Vikram",
author_email = "[email protected]",
description = "",
license = "MIT",
keywords = "",
url = "",
packages=find_packages(include=[
'showdownai',
'smogon',
'server'
]),
include_package_data=True,
package_data={
'static': 'server/static/*',
'templates': 'server/templates/*'
},
entry_points={
'console_scripts': [
'showdownai=showdownai.showdown:main',
'simulator=showdownai.game:main',
'showdownmonitor=pokemonitor.__init__:main',
'multitest=showdownai.multitest:run',
'showdownserver=server.server:main'
],
},
install_requires=reqs,
long_description="",
classifiers=[
],
)