-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
35 lines (28 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
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):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
import packagetrack
setup(name='packagetrack',
version=packagetrack.__version__,
author="Scott Torborg",
author_email="[email protected]",
license="GPL",
keywords="track packages ups fedex usps shipping",
url="http://github.com/storborg/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"])