-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (35 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
from setuptools import setup, find_packages
version = '1.2.1'
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
setup(name='cosent.buildtools',
version=version,
description="Release scripts",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
],
keywords='python git buildout',
author='Guido Stevens',
author_email='[email protected]',
url='http://cosent.nl',
license='GPL',
packages=find_packages(),
namespace_packages=['cosent'],
test_suite='cosent.buildtools.tests',
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'jarn.mkrelease',
],
entry_points={
'console_scripts': ['bumpversion=cosent.buildtools.bumpversion:main',
'buildtool=cosent.buildtools.buildtool:main']
},
)