-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.63 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.63 KB
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: BSD License",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
]
with open("README.md", "r") as fp:
long_description = fp.read()
setup(name="dicebox",
version="0.4.0",
author="Michael Tartre",
author_email="michael@enkratic.com",
url="https://github.com/quantology/dicebox",
packages=["dicebox"],
install_requires=["numpy"],
extras_require={
"parse": ["asteval"],
"dndsim": ["pandas"],
},
description="A simple python DSL for dice.",
long_description=long_description,
long_description_content_type='text/markdown',
license="bsd-3-clause",
classifiers=classifiers
)