forked from matijakolaric-com/django-music-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.29 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
import setuptools
with open('README.rst', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='django-music-publisher',
version='19.1.4a1',
author='Matija Kolarić',
author_email='[email protected]',
license='MIT License',
description='Django app/project for original music publishers',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://django-music-publisher.readthedocs.io',
packages=setuptools.find_packages(exclude=['dmp_project', 'docs']),
install_requires=(
'Django>=2.1.5',
'requests>=2.20.0',
),
include_package_data=True,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
zip_safe=False,
)