-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (37 loc) · 982 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from setuptools.command.install import install
import os
NAME = 'kbdtest'
VERSION = '0.0'
class InstallScript(install):
def run(self):
install.run(self)
def read(filename):
import os
BASE_DIR = os.path.dirname(__file__)
filename = os.path.join(BASE_DIR, filename)
with open(filename, 'r') as fi:
return fi.read()
def readlist(filename):
rows = read(filename).split("\n")
rows = [x.strip() for x in rows if x.strip()]
return list(rows)
setup(
name=NAME,
version=VERSION,
author="Nick Charron",
author_email="[email protected]",
url='https://github.com/ruunyox/kdbtest',
license='MIT',
packages=find_packages(),
install_requires=['numpy','pynput'],
zip_safe=True,
cmdclass={
'install': InstallScript
},
entry_points={
'console_scripts': [
'kbdtest = kbdtest.bin.__main__:main'
],
}
)