forked from asyml/asyml-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (23 loc) · 832 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
import setuptools
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setuptools.setup(
name="asyml-utilities",
version="0.0.1",
url="https://github.com/asyml/asyml-utilities",
description="Shared Utilities for ASYML Projects",
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License Version 2.0',
packages=setuptools.find_packages(),
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)