-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.14 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
from setuptools import setup, find_packages
VERSION = '1.2.3'
DESCRIPTION = 'Tools for collecting behavioural measures of iconicity'
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="icotools",
version=VERSION,
author="Bonnie McLean",
author_email="<59.b.mclean@gmail.com>",
description=DESCRIPTION,
long_description=open('pypiREADME.txt').read(),
packages=['icotools.templates','icotools.features'],
url='https://pypi.org/project/icotools/',
license="LICENSE",
install_requires=[], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'iconicity'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
include_package_data=True,
package_data={'':['templates/*.html','templates/*.php','features/*.tsv']},
)