-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.48 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
41
42
from setuptools import setup, find_packages
import sys, os
version = '1.6.0'
packages = find_packages()
desc = open("README.md").read()
setup(name='django-ui-widgets',
version=version,
description="Library of django ui widgets",
long_description=desc,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Build Tools',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords=['django', 'forms', 'widgets', 'fields', 'django-ui'],
author='Alexander',
author_email='digital-mag@ya.ru',
url='https://github.com/Sanshain/django-ui-widgets',
license='AGPL',
packages=find_packages(), # ['django-ui-widgets'],
include_package_data=True,
install_requires=["Django>=2.0"],
entry_points="""
# -*- Entry points: -*-
""",
)