forked from theon/pelicangit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup
requires = ['pelican']
try:
import argparse
except ImportError:
requires.append('argparse')
entry_points = {
'console_scripts': [
'pelicangit = pelicangit:main'
]
}
setup(
name = "pelicangit",
version = "0.1",
url = 'http://theon.github.com/pelicangit',
author = 'Ian Forsey',
author_email = 'forsey@gmail.com',
description = "",
long_description=open('README.rst').read(),
packages = ['pelicangit'],
include_package_data = True,
install_requires = requires,
entry_points = entry_points,
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)