-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 1.05 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
import os
from setuptools import setup
# No third party dependencies, so importing the package should be safe.
import temporenc
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fp:
long_description = fp.read()
setup(
name='temporenc',
description="Python library for the temporenc format",
long_description=long_description,
version=temporenc.__version__,
author="Wouter Bolsterlee",
author_email="uws@xs4all.nl",
url='https://github.com/wbolster/temporenc-python',
packages=['temporenc'],
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)