-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1.14 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
32
33
34
35
36
37
38
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
setup(
author="<Gokhan Kesler>",
author_email='gokhankesler@gmail.com',
description="A package for converting between imperial unit lengths and weights.",
name='impyrial',
packages=find_packages(include=["impyrial", "impyrial.*"]),
version='0.2.0',
install_requires=['numpy>=1.10', 'pandas'],
python_requires="==3.9.*",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
],
license="MIT license",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
keywords='impyrial',
zip_safe=False,
)