-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 846 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import re
requirements = []
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = ''
with open('pyzork/__init__.py') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
extras_require = {
'visualise': [
'matplotlib',
'networkx'
],
'docs': [
'sphinx==1.8.3',
'sphinx-autodoc-typehints==1.6.0'
]
}
setup(
name = "pyzork",
version = version,
description = "An extensible python library for creating text adventures",
author = "Clement Julia",
author_email = "[email protected]",
url = "https://github.com/ClementJ18/pyzork",
packages = ["pyzork"],
install_requires=requirements,
extras_require=extras_require
)