-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.32 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.32 KB
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
import os
from setuptools import setup
def readme():
cwd = os.path.dirname(os.path.abspath(__file__))
with open(cwd+'/README.md', 'r') as file:
filetext = file.read()
return filetext
setup(
name='FooFinder',
version='3.0.60',
description='A package designed to help you find foo.',
long_description=readme(),
long_description_content_type='text/markdown',
python_requires='>3.5.0',
url='https://github.com/MadisonAster/FooFinder',
author='Madison Aster',
author_email='info@MadisonAster.com',
license='LGPL',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='relative imports importing recursive',
package_dir = {'': 'FooFinder'},
packages=['FooFinder'],
)