-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (32 loc) · 1007 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
28
29
30
31
32
33
34
from setuptools import setup
setup(
name='django-tilda',
version='1.0.14',
author='Ivan Lukyanets',
author_email='[email protected]',
url='https://github.com/1vank1n/django-tilda',
packages=[
'tilda',
'tilda.locale',
],
include_package_data=True,
license='MIT',
description='A Django app for fetch/download pages from API Tilda.cc',
keywords='django tilda',
long_description=open('README.rst').read(),
install_requires=[
'django-object-actions==0.10.0',
'requests==2.32.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
],
)