-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 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
38
from os.path import join, dirname
from distutils.core import setup
from setuptools import find_packages
try:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except IOError:
long_description = None
version = __import__('django_auto_static_libs').get_version()
setup(
name='django-auto-static-libs',
version=version,
url="https://github.com/rokdd/django-auto-static-libs",
download_url='https://github.com/rokdd/django-auto-static-libs/archive/refs/tags/v%s.tar.gz' % version,
description='jQuery and other librarys ready to download self hosted and embed into templates',
long_description="Provide basic libraries and resources like jQuery or semantic-ui in django applications. Make it easier for keeping them updated and self-hosted. ",
author='rokdd',
author_email='[email protected]',
license='BSD',
keywords='django jquery fontawesome pygal javascript static'.split(),
platforms='any',
long_description_content_type='text/markdown',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=find_packages(),
install_requires=[
'requests',
]
)