-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·43 lines (41 loc) · 1.54 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
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distribute_setup import use_setuptools
use_setuptools()
from aero.__version__ import __version__, __title__, __authors__, __email__, __license__, __url__, __download_url__
from setuptools import setup
setup(
name=__title__,
author=__authors__,
author_email=__email__,
version=__version__,
license=__license__,
url=__url__,
download_url=__download_url__,
packages=['aero', 'aero.adapters', 'aero.commands'],
package_data={'aero': ['assets/*.ascii']},
description=[
descr.strip() for descr in open('README.rst').read().splitlines()[:6]
if descr and '===' not in descr
][1],
long_description='\n'+open('README.rst').read(),
install_requires=open('requirements.txt').read().splitlines(),
platforms=['MacOS X', 'POSIX'],
classifiers=[ # http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
],
scripts=["aero/aero"],
)