forked from cc-archive/cc.license
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 999 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
from setuptools import setup, find_packages
setup(name='cc.license',
version='0.14.24',
namespace_packages = ['cc',],
description="License selection based on ccREL-based metadata.",
classifiers=[],
keywords='',
author='Creative Commons',
author_email='[email protected]',
url='http://wiki.creativecommons.org/CcLicense',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
#package_data={'cc.license': ['*.xml', '*.txt']}, # doesn't work
zip_safe=False,
test_suite='nose.collector',
install_requires=[
'rdflib<3.0',
'cc.licenserdf',
'setuptools',
'nose',
'lxml',
'rdfadict',
'python-gettext<2.0',
'jinja2',
'cc.i18n',
],
dependency_links = [
'http://code.creativecommons.org/basket/',
],
setup_requires=['setuptools-git',],
)