-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 698 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 698 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
import mydata
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', encoding='utf-8') as f:
requires = f.read().splitlines()
setup(
name="mydata",
version=mydata.__version__,
author=mydata.__author__,
author_email='soy.lovit@gmail.com',
url='https://github.com/lovit/python_ml_intro',
description="Introduction of machine learning for data analytics",
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=requires,
packages=find_packages(),
package_data={
'mydata':['data/datafile/*']
},
)