-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
51 lines (48 loc) · 1.63 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
from setuptools import setup, find_packages
import versioneer
versioneer.vcs = "git"
versioneer.versionfile_source = "imaginary/_version.py"
versioneer.versionfile_build = "imaginary/_version.py"
versioneer.tag_prefix= ""
versioneer.parentdir_prefix = "Imaginary-"
with open("README.rst") as fObj:
readme = fObj.read()
distobj = setup(
name="Imaginary",
version=versioneer.get_version(),
maintainer="Divmod, Inc.",
maintainer_email="[email protected]",
url="http://divmod.org/trac/wiki/DivmodImaginary",
license="MIT",
platforms=["any"],
description=readme,
cmdclass=versioneer.get_cmdclass(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Games/Entertainment :: Real Time Strategy",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Terminals"],
packages=find_packages("src") + ['axiom.plugins', 'xmantissa.plugins'],
package_dir={"": "src"},
install_requires=[
"twisted[conch]>=14.0.0",
"epsilon>=0.7.0",
"attrs",
"axiom>=0.7.1",
"mantissa>=0.8.0",
],
extras_require={
"doc": ["sphinx>=1.2.2"],
},
package_data={
"imaginary": ["resources/*", "resources/help/*"],
},
)