forked from storborg/packagetrack
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (33 loc) · 1.03 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
import os.path
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
def read(fname):
content = None
with open(os.path.join(os.path.dirname(__file__), fname), 'r') as f:
content = f.read()
return content
setup(
name='packagetrack',
version='0.4.2',
author="Scott Torborg",
author_email="storborg@mit.edu",
license="GPL",
keywords="track packages ups fedex usps dhl shipping",
url="http://github.com/aheadley/packagetrack",
description='Track packages.',
packages=find_packages(exclude=['ez_setup', 'tests']),
long_description=read('README.rst'),
test_suite='nose.collector',
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python"
]
)