-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
63 lines (51 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""A setuptools based setup module for ox_profile
Copyright (c) 2017, Emin Martinian
See LICENSE at the top-level of this distribution for more information.
"""
# *IMPORTANT*: While pyproject.toml is supposedly the new standard,
# *IMPORTANT*: it is much more complicated to get working with
# *IMPORTANT*: anything slightly non-standard (e.g. flat-layout).
# *IMPORTANT*: Therefore we package just using setup.py.
from os import path
from setuptools import setup, find_packages
def get_readme():
'Get the long description from the README file'
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as my_fd:
result = my_fd.read()
return result
setup(
name='ox_profile',
version='0.2.14',
description='Tools for statistical profiling.',
long_description=get_readme(),
long_description_content_type='text/markdown',
url='http://github.com/emin63/ox_profile',
author='Emin Martinian',
author_email='emin.martinian@gmail.com',
include_package_data=True,
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
keywords='statistical profiling',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[],
# If there are data files included in your packages that need to be
# installed, specify them here.
package_data={
'ox_profile': ['**/*.html'],
},
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'sample=sample:main',
],
},
)