forked from cc-archive/cc.license
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 981 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
from setuptools import setup, find_packages
setup(
name='cc.license',
description="License selection based on ccREL-based metadata.",
version='0.14.25',
url='http://wiki.creativecommons.org/CcLicense',
license='MIT',
author='Creative Commons',
author_email='[email protected]',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
namespace_packages=['cc', ],
test_suite='nose.collector',
install_requires=[
'cc.i18n',
'cc.licenserdf',
'jinja2',
'lxml',
'nose',
'python-gettext',
'rdfadict',
'rdflib',
'setuptools'],
dependency_links=[
'https://github.com/creativecommons/cc.i18n/tarball/'
'master#egg=cc.i18n',
'https://github.com/creativecommons/cc.licenserdf/tarball/'
'master#egg=cc.licenserdf'],
setup_requires=['setuptools-git', ],
)