-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (33 loc) · 925 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
35
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(
name = "mezzanine-bookmarks",
version = "0.1",
license = 'BSD',
description = "Bookmark Service built on Django and Mezzanine.",
long_description=long_description,
author='Ivan Diao',
author_email='[email protected]',
url='http://github.com/adieu/mezzanine-bookmarks',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
entry_points={
'console_scripts': [
'bookmarks = bookmarks.utils.runner:main',
],
},
install_requires = (
'mezzanine',
'logan',
'Django'
),
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)