-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.02 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.02 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
from setuptools import setup
long_description = open('README.rst').read()
setup(
name='django-bitbucket-hook',
version='1.2.6',
packages=['django_bitbucket_hook', 'django_bitbucket_hook.migrations'],
url='https://github.com/Kras4ooo/django-bitbucket-hook',
license='Apache License Version 2.0',
author='Krasimir',
author_email='krasimir.nikolov1994@gmail.com',
long_description=long_description,
classifiers=[
'Intended Audience :: Developers',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
description='Django module',
test_suite='tests'
)