-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (48 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import codecs
from setuptools import setup, find_packages
version = '0.3.dev1'
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
install_requires = [
'Django>=1.11,<4.0',
'django-widget-tweaks>=1.4,<=1.5'
]
test_requires = [
]
setup(
name='django-spectre-css',
version=version,
description='Spectre CSS for Django',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Nils Rokita',
author_email='0rokita@informatik.uni-hamburg.de',
maintainer='Nils Rokita',
maintainer_email='0rokita@informatik.uni-hamburg.de',
url='https://github.com/fsinfuhh/django-spectre-css',
license='License :: OSI Approved :: MIT License',
packages=find_packages(),
install_requires=install_requires,
package_data={
"": ["static/css/lib/*.css", "templates/spectre-css/*.html"],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
'Framework :: Django',
]
)