forked from divio/divio-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (42 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (42 loc) · 1.28 KB
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
44
45
46
47
48
49
50
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
from aldryn_client import __version__
with open('requirements.txt') as f:
requirements = f.read().splitlines()
if sys.platform == 'win32':
with open('requirements-windows.txt') as f:
requirements += f.read().splitlines()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
]
setup(
name='aldryn-client',
version=__version__,
description='The command-line client for the Aldryn Cloud',
author='Divio AG',
author_email='aldryn@divio.ch',
url='http://www.aldryn.com/',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
license='BSD',
platforms=['OS Independent'],
install_requires=requirements,
entry_points="""
[console_scripts]
aldryn = aldryn_client.cli:cli
""",
)