-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1009 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
#!/usr/bin/env python
import os
from setuptools import setup,find_packages
PATH = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(PATH, 'README.md'), encoding='utf-8') as fp:
DESC = fp.read()
setup(
name='django-copy',
version='0.2.1',
description='Probably the smallest and simplest CMS for the Django framework',
long_description=DESC,
long_description_content_type = 'text/markdown',
keywords='Django, CMS',
author='Pedro Tavares',
author_email='[email protected]',
url='https://github.com/ptav/django-copy',
license='LICENSE',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
)