-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (29 loc) · 929 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
import os
from setuptools import setup, find_packages
import filemanager
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-webfilemanager',
version=filemanager.__version__,
description='Template for reusable django applications.',
long_description=read('README.rst'),
license='BSD',
author='rameez',
author_email='[email protected]',
url='https://github.com/rameezarshad/django-filemanager',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'django',
],
)