-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 797 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 797 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
27
28
29
30
31
from setuptools import setup
from os import path
import re
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name='eepro',
version='0.2.0',
author='Daniel Grießhaber',
author_email='dangrie158@gmail.com',
url='https://github.com/dangrie158/EEPROgraMmer',
packages=['eepro'],
include_package_data=True,
license='MIT',
description='Arduino based EEPROM Programmer for parallel EEPROMS',
long_description=read('README.rst'),
classifiers=[
'Development Status :: 1 - Planning',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
],
install_requires=[
'pyserial',
'tqdm'
],
entry_points = {
'console_scripts': ['eepro=eepro.eepro:main'],
}
)