-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (35 loc) · 1.14 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
from setuptools import setup
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
version = {}
with open(os.path.join(_here, "universaldatatool", "version.py")) as f:
exec(f.read(), version)
setup(
name="universaldatatool",
version=version["__version__"],
description=(
"Interact with any kind of kind of data directly in a jupyter notebook."
),
long_description=long_description,
long_description_content_type="text/markdown",
author="Severin Ibarluzea",
author_email="[email protected]",
url="https://github.com/UniversalDataTool/python-universaldatatool",
license="MIT",
packages=["universaldatatool"],
# install_requires=[
# 'dependency==1.2.3',
# ],
# no scripts in this example
# scripts=['bin/a-script'],
include_package_data=True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
],
)