-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.78 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
from setuptools import setup, find_packages
import os
from pypdn._version import __version__
currentPath = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(currentPath, 'README.rst'), 'r') as f:
long_description = f.read()
long_description = '\n' + long_description
setup(name='pypdn',
version=__version__,
description='Python package to read and write Paint.NET (PDN) images.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Addison Elliott',
author_email='addison.elliott@gmail.com',
url='https://github.com/addisonElliott/pypdn',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
],
keywords='paint dot net paintdotnet dotnet .net pdn library read write save layered images image editor',
project_urls={
'Documentation': 'https://github.com/addisonElliott/pypdn',
'Source': 'https://github.com/addisonElliott/pypdn',
'Tracker': 'https://github.com/addisonElliott/pypdn/issues',
},
python_requires='>=3.4',
packages=find_packages(),
package_data={
'tests': ['data/*']
},
license='MIT License',
install_requires=[
'numpy>=1.12', 'aenum>=1.0']
)