-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 970 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
from setuptools import setup, find_packages
from syncmedia import __version__
setup(
name='Syncmedia',
version=__version__,
description='Syncmedia: data file sincronization for Django',
long_description="Syncmedia is a django application that let you syncronize data files between multiple machines running the same django site.",
author='SimplyOpen',
author_email='[email protected]',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
packages=find_packages(),
package_dir={'syncmedia': 'syncmedia'},
install_requires=[
'Django>=1.4',
'psutil'
],
)