-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 965 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as fp:
return fp.read()
setup(name="gw2api",
version="1.1.4",
description="Guild Wars 2 API",
author="Paul Hooijenga",
author_email="paulhooijenga@gmail.com",
url="https://github.com/hackedd/gw2api",
license="MIT",
long_description=read("README.rst"),
packages=["gw2api", "gw2api.v2"],
install_requires=["requests", "six"],
classifiers=["Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Games/Entertainment"]
)