-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 1.17 KB
/
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
from setuptools import setup, find_packages
from os.path import join, dirname
HISTORY = join(dirname(__file__), 'HISTORY.txt')
README = join(dirname(__file__), 'src', 'fcrepo', 'README.txt')
setup(
name='fcrepo',
version='1.1-dev',
author='Infrae',
author_email='[email protected]',
description="API implementation for the Fedora Commons Repository platform",
long_description=(open(README).read()+
'\n'+
open(HISTORY).read()),
classifiers=["Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Intended Audience :: Science/Research"],
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data = True,
zip_safe=False,
license='BSD',
entry_points= {
'console_scripts': [
'install_fedora = fcrepo.scripts:install_fedora',
'start_fedora = fcrepo.scripts:start_fedora',
]
},
install_requires=[
'lxml',
],
)