-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (39 loc) · 1.23 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
# -*- coding: utf-8 -*-
"""
Created on Thu Dec 1 21:41:14 2016
@author: Tom Blanchet
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
README_FILE = 'README.md'
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, README_FILE), encoding='utf-8') as f:
long_description = f.read()
setup(
name='lwf_test',
version='0.1a0',
description='A simple module/package for testing python code',
long_description=long_description,
url='https://github.com/FrogBomb/lwf_test',
author='Tom Blanchet',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='unittest test lightweight development',
packages=['lwf_test', 'lwf_test.package_tests'],
package_data={'lwf_test': '*.txt'},
# package_dir = {'lwf_test':'lwf_test'},
data_files = ['README.md'],
entry_points={
'console_scripts': [
'lwf_test=lwf_test.__main__:main'
],
},
)