-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 1.23 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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(
name='unitdoc',
version='0.3.2',
description='Classes that describe physical objects with units and easy serialization.',
long_description=readme,
long_description_content_type='text/markdown',
author='Deniz Bozyigit',
author_email='deniz195@gmail.com',
url='https://github.com/deniz195/unitdoc',
license="MIT",
packages=find_packages(exclude=('tests', 'docs', 'examples')),
install_requires = ['attrs', 'cattrs', 'attr-descriptions>=0.1.3', 'ruamel.yaml', 'pint_mtools>=0.15.1', 'python-dateutil'],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)