-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 803 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
from setuptools import setup
setup(
name='fileversioninger',
version='0.6',
download_url='https://github.com/dwickstrom/fileversioninger/tarball/0.6',
author='David Wickstrom',
author_email='[email protected]',
packages=['fileversioninger', 'tests'],
url='https://github.com/dwickstrom/fileversioninger',
license='MIT',
description='Easily append a meaningful file name to the end of a given file name.',
classifiers=[ "Intended Audience :: Developers"
, "License :: OSI Approved :: BSD License"
, "Operating System :: OS Independent"
, "Programming Language :: Python :: 2.7"
, "Programming Language :: Python :: 3"
, "Topic :: Software Development"
, "Topic :: Software Development :: Libraries"
, "Topic :: Utilities"
],
)