-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 891 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
version = '0.5'
setup(
name='Products.PleiadesEntity',
version=version,
description="",
long_description="""\
""",
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Institute for the Study of the Ancient World',
author_email='isaw@nyu.edu',
url='https://github.com/isawnyu/PleiadesEntity',
license='GPL',
packages=find_packages(),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'collective.geo.geographer',
'isaw.bibitems',
],
extras_require={
'test': ['Products.PloneTestCase'],
},
entry_points="""
# -*- Entry points: -*-
""",
)