mirror of
https://github.com/django-components/django-components.git
synced 2025-07-16 04:54:59 +00:00
12 lines
242 B
Python
12 lines
242 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='django-components',
|
|
packages=find_packages(exclude='tests'),
|
|
classifiers=[
|
|
'Private :: Do Not Upload',
|
|
],
|
|
install_requires=[
|
|
'Django>=1.7'
|
|
],
|
|
)
|