-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (32 loc) · 1.21 KB
/
setup.py
File metadata and controls
39 lines (32 loc) · 1.21 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
39
from setuptools import setup, find_packages
setup(
name='operator_expression_generator',
version='1.0',
# This automatically detects the packages in the specified
# (or current directory if no directory is given).
packages=find_packages(exclude=['help']),
license="",
# All of the following fields are PyPI metadata fields.
# When registering a package at PyPI this is used as
# information on the package page.
author='Molinge',
author_email='molingejr@gmail.com',
description='An Operator and Expression Generator',
long_description=""" """,
install_requires=['PyQt5', 'pickle', 'gzip'],
# setup_requires=['PyQt5'],
package_data={
# Include (markdown text) documentation files from any directory
'': ['*.md']
},
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
]
)