-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 796 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 796 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='mldatautils',
version='0.1.3',
description="mldatautils",
long_description="mldatautils",
download_url='https://pypi.org/project/mldatautils',
author="Chie Hayashida",
author_email='chie8842@gmail.com',
url='https://github.com/chie8842/mldatautils',
packages=find_packages(exclude=["*conftest*", "*tests*"]),
include_package_data=True,
install_requires=requirements,
dependency_links=['https://pypi.python.org/pypi'],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='test'
)