forked from lovelysystems/lovely.buildouthttp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (32 loc) · 1.21 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
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (read('README.rst') + '\n' + read('CHANGES.txt') + '\n')
name = 'githubbuildout'
setup(
name=name,
version="0.2",
author="Kevin Williams",
author_email="kevin@weblivion.com",
description="Buildout extension to enable downloads from private GitHub "
"repositories into buildout find-links and download recipes",
long_description=long_description,
license="ZPL 2.1",
keywords="buildout github private repository download",
url='https://github.com/isolationism/githubbuildout',
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
install_requires=['setuptools', 'zc.buildout'],
entry_points={'zc.buildout.extension':
['default = %s.githubbuildout:install' % name]},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Framework :: Buildout :: Extension',
'Topic :: Software Development :: Build Tools',
],
)