-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
60 lines (52 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
name = 'ostree'
description = (
'Pulls containers and turns them into OS trees for systemd-nspawn.'
)
version = '0.1.1'
def get_long_description():
readme = open('README.md').read()
history = open('HISTORY.md').read()
# cut the part before the description to avoid repetition on pypi
readme = readme[readme.index(description) + len(description):]
return '\n'.join((readme, history))
setup(
name=name,
version=version,
description=description,
long_description=get_long_description(),
long_description_content_type='text/markdown',
url='http://github.com/seantis/ostree',
author='Seantis GmbH',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=name.split('.')[:-1],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'cached_property',
'click',
'google-auth',
'requests',
],
extras_require=dict(
test=[
'coverage',
'flake8',
'pytest',
],
),
entry_points={
'console_scripts': 'ostree=ostree.cli:cli'
},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
]
)