-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 799 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
package_name = "pytmpdir"
package_version = '0.2.4'
setup(
name=package_name,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=["sphinx_rtd_theme", "sphinx<4"],
version=package_version,
description='A class representing a file system directory, that deletes on '
'garbage collect.',
author='Synerty',
author_email='support@synerty.com',
url='https://github.com/Synerty/%s' % package_name,
download_url='https://github.com/Synerty/%s/tarball/%s' % (
package_name, package_version),
keywords=['directory', 'scan', 'interrogate', 'create', 'open', 'Python', 'Synerty'],
classifiers=[
"Programming Language :: Python :: 3.5",
],
)