-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.27 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
from setuptools import setup
from pyxwb2 import __version__ as version
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
requirements = [r for r in f.read().split("\n") if r]
setup(
name="pyxwb2",
packages=["pyxwb2", "pyxwb2.models"],
version=version,
license="GNU GPLv3",
description="Python API for FFG X-wing 2.0",
long_description=long_description,
long_description_content_type="text/markdown",
author="Dennis Whitney",
author_email="[email protected]",
url="https://github.com/minsis/pyxwb2",
download_url="https://github.com/minsis/pyxwb2/archive/v0.1.0b.tar.gz",
package_data={
"pyxwb2": [
"data/*",
"data/*/*",
"data/*/*/*",
"data/*/*/*/*"
]
},
keywords=[
"ffg",
"x-wing",
"xwing",
"x-wing 2.0",
"xwing 2.0"
],
install_requires=requirements,
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
]
)