Skip to content

Commit 98e4ca2

Browse files
author
Mominur Rahman
authored
Merge pull request #3 from app-generator/admin-section
Add setup.py and manifest.in file
2 parents fbc0509 + 37e1012 commit 98e4ca2

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include LICENSE
2+
include README.rst
3+
recursive-include django_admin_coreui/static *
4+
recursive-include django_admin_coreui/templates *
5+
recursive-include docs *

setup.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import os
2+
from setuptools import find_packages, setup
3+
4+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
5+
README = readme.read()
6+
7+
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
8+
9+
setup(
10+
name='django-admin-coreui',
11+
version='1.0.13',
12+
zip_safe=False,
13+
packages=find_packages(),
14+
include_package_data=True,
15+
description='',
16+
long_description=README,
17+
long_description_content_type="text/markdown",
18+
url='https://github.com/app-generator/django-admin-coreui',
19+
author='AppSeed.us',
20+
author_email='support@appseed.us',
21+
license='EULA License',
22+
classifiers=[
23+
'Intended Audience :: Developers',
24+
'Intended Audience :: System Administrators',
25+
'License :: OSI Approved :: MIT License',
26+
'Operating System :: OS Independent',
27+
'Programming Language :: Python',
28+
'Programming Language :: Python :: 2.6',
29+
'Programming Language :: Python :: 2.7',
30+
'Programming Language :: Python :: 3.2',
31+
'Programming Language :: Python :: 3.3',
32+
'Programming Language :: Python :: 3.4',
33+
'Programming Language :: Python :: 3.5',
34+
'Programming Language :: Python :: 3.6',
35+
'Environment :: Web Environment',
36+
'Topic :: Software Development',
37+
'Topic :: Software Development :: User Interfaces',
38+
],
39+
)

0 commit comments

Comments
 (0)