-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (24 loc) · 858 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
import pyasana
from distutils.core import setup
setup(
name="pyasana",
packages=["pyasana"],
package_dir={"pyasana": "pyasana"},
version=pyasana.__version__,
description="Python Client for asana.com",
long_description=open("README.rst").read() + "\n\n" + open("HISTORY.rst").read(),
author="Casey Dunham",
author_email="[email protected]",
url="https://github.com/caseydunham/python-asana",
license=open("LICENSE").read(),
classifiers=(
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
),
)