-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (36 loc) · 949 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
43
44
45
46
47
#!/usr/bin/env python3
"""Setup.py for dxdt package."""
import os
from setuptools import setup, find_packages
def read(fname):
"""Utility function to insert the README file."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='dxdt',
version='0.6',
packages=find_packages(exclude=['tests']),
# py_modules=[
# 'dxdt',
# 'dxdtcli',
# 'dxdtconf',
# ],
description=('Notational Velocity for every file.'),
long_description=read('README.md'),
author='Daniel Theriault',
author_email='dannymt97@gmail.com',
license='MIT',
install_requires=[
'argcomplete',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: MIT License',
'Environment :: Console'
],
entry_points={
'console_scripts': [
'dxdt = dxdt.cli:main',
]
}
)