-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 803 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
import os
from setuptools import setup
def read_deps(filename):
absfilename = os.path.join(os.path.dirname(__file__), filename)
with open(absfilename) as f:
return [l.strip() for l in f.readlines() if l.strip() and not l.startswith('#')]
setup(
name='maxcdn-ssl-client',
version='1.0',
author='Clemens Lang',
author_email='cal@macports.org',
url='https://github.com/macports/maxcdn-ssl-client',
description='MaxCDN API client to change SSL certificates in an automated'
' fashion.',
packages=['maxcdn_ssl_client'],
install_requires=read_deps('requirements.txt'),
platforms='all',
license='BSD',
entry_points={
'console_scripts': [
'maxcdn-ssl-client = maxcdn_ssl_client.__main__:main'
]
},
)