forked from treasure-data/pandas-td
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 973 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
#!/usr/bin/env python
import re
from setuptools import setup, find_packages
def read_version():
with open("pandas_td/version.py") as f:
m = re.match(r'__version__ = "([^\"]*)"', f.read())
return m.group(1)
setup(
name="pandas-td",
version=read_version(),
description="Pandas extension for Treasure Data",
author="Treasure Data, Inc.",
author_email="[email protected]",
url="https://github.com/treasure-data/pandas-td",
install_requires=open("requirements.txt").read().splitlines(),
packages=find_packages(),
license="Apache License 2.0",
platforms="Posix; MacOS X; Windows",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
)