-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
35 lines (32 loc) · 1015 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
29
30
31
32
33
34
35
#!/usr/bin/env
from setuptools import setup, find_packages
import imp
repren = imp.load_source("repren", "repren")
setup(
name="repren",
version=repren.VERSION,
packages=find_packages(),
author="Joshua Levy",
license="Apache 2",
url="https://github.com/jlevy/repren",
download_url="https://github.com/jlevy/repren/tarball/" + repren.VERSION,
scripts=["repren"],
install_requires=[],
description=repren.DESCRIPTION,
long_description=repren.LONG_DESCRIPTION,
classifiers= [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'Topic :: Text Processing',
'Topic :: Software Development'
],
)