-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (29 loc) · 1.06 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "event-analysis",
version = "1.1.3",
description = "This package allows you to run Event Coincidence Analysis and Event Synchronization on your event series on the CPU and Nvidia-GPU",
py_modules = [ "EventAnalysis" ],
package_dir = { '' : "EventAnalysis" },
packages=find_packages(where="EventAnalysis"),
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
long_description = long_description,
long_description_content_type = "text/markdown",
install_requires = [
"numba ",
"numpy ",
"pandas"
],
url = "https://github.com/professorcode1/Event-Analysis",
author = "Raghav Kumar",
author_email = "raghkum2000@gmail.com"
)