-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
68 lines (53 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
""" A setuptools-based setup module for my everydaytools.
"""
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
import os
# Get the long description from the README file
with open(os.path.join(os.getcwd(), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Get the version from a file, which is included with the distribution (listed in MANIFEST.in).
with open(os.path.join(os.getcwd(), 'VERSION'), encoding='utf-8') as version_file:
ver=version_file.read().strip()
setup(
name='everydaytools',
version=ver, # Use the version from the file.
# zip_safe= False,
description='Tools for doing almost anything.',
long_description=long_description, # From the README.md
# The project's main homepage.
url='https://github.com/UnnamedMoose/EverydayTools',
# Author details
author='Artur Lidtke',
# Choose your license
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: enthusiasts',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='magic, dwarves, data',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['pandas>=0.19.2','matplotlib>=3.0.3','numpy>=1.12.1'],
extras_require={
'dev': ['pdb'],
'test': ['unittest']
},
package_data={
# TODO could add some package data for testing.
# Include .tle files from any package.
#'': ['*.tle'],
# Also include a specific files.
#'TLEFiltering': ['10983.tle'],
},
# Automatically install the entry-point scripts.
# TODO would be good to create entry-point scripts if there will be any.
#entry_points={
# 'console_scripts': [
# 'serialMonitor=SerialMonitor:main',
# ],
#},
)