-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1023 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 1023 Bytes
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
from setuptools import setup
setup(
name='j5basic',
version='1.5',
packages=['j5basic'],
license='Apache License, Version 2.0',
description='A collection of utility methods and classes.',
long_description=open('README.md').read(),
url='http://www.sjsoft.com/',
author='St James Software',
author_email='support@sjsoft.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = ["future"],
extras_require = {
'CleanXHTML': ["cssutils", "lxml"],
'Colours': ["numpy"],
'time-related': ["pytz", 'virtualtime'],
'tests': ['j5test'],
}
)