-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 728 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 728 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
import pathlib
import setuptools
from distutils.core import setup
ROOTDIR = pathlib.Path(__file__).parent
README = (ROOTDIR / "README.md").read_text()
setup(
name='makeup',
version='0.1.2',
packages=setuptools.find_packages(),
description='Make your models look pretty.',
long_description=README,
long_description_content_type='text/markdown',
author='trevor grayson',
author_email='trevor@dave.com',
url='https://github.com/trevorgrayson/mlf',
py_modules=['makeup'],
keywords=[
'machine learning', 'data science', 'make', 'models'
],
# license='',
# packages=['distutils', 'distutils.command'],
# scripts=['bin/makeup']
)