-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (26 loc) · 826 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
from setuptools import setup, find_packages
setup(
name='desk',
version=__import__('desk').__version__,
license="BSD",
# install_requires=[
# "django>=1.4.0",
# ],
description="desk, service data manager",
#long_description=open('README.rst').read(),
author='Yves Serrano',
author_email='[email protected]',
url='http://github.com/yvess/desk',
download_url='http://github.com/yvess/desk/downloads',
include_package_data=True,
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
#'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)