-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
43 lines (40 loc) · 1.28 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
38
39
40
41
42
43
#
# PLEASE IGNORED THIS FILE
# TODO: bring it up to date and test
#
from pip.req import parse_requirements
from setuptools import setup, find_packages
import os
import digipal
install_reqs = parse_requirements('build/requirements.txt')
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Researchers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
"Programming Language :: Python :: 2.7",
]
setup(
author="Peter Stokes",
name='Archetype',
version=digipal.__version__,
description='Digital Resource and Database of Palaeography, Manuscript Studies and Diplomatic',
long_description=open(os.path.join(
os.path.dirname(__file__), 'README.md')).read(),
url='https://archetype.ink',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[str(ir.req) for ir in install_reqs],
tests_require=[
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
# test_suite='runtests.main',
)