-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 761 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 761 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
import re
from setuptools import setup
with open('daiquiri_tap/__init__.py') as f:
metadata = dict(re.findall(r'__(.*)__ = [\']([^\']*)[\']', f.read()))
setup(
name=metadata['title'],
version=metadata['version'],
author=metadata['author'],
author_email=metadata['email'],
maintainer=metadata['author'],
maintainer_email=metadata['email'],
license=metadata['license'],
url='https://github.com/aipescience/django-daiquiri-tap',
description=u'Daiquiri Tap is a tiny wrapper for astroquery, adding support for token authorization.',
long_description=open('README.rst').read(),
install_requires=[
'astroquery>=0.3.7'
],
classifiers=[],
packages=['daiquiri_tap'],
include_package_data=True
)