-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1018 Bytes
/
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
# -*- coding: utf-8 -*-
"""
Created on Sun Jun 13 19:06:08 2021
@author: Vishwesh
"""
#import pathlib
from setuptools import setup, find_packages
#HERE = pathlib.Path(__file__).parent
VERSION = '0.3'
PACKAGE_NAME = 'Logic_Py'
AUTHOR = 'Vishwesh'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/vishwesh-vishwesh/Logic_Py'
LICENSE = 'Apache License 2.0'
DESCRIPTION = 'Basic and Combinational logic gates'
LONG_DESCRIPTION = 'file: README.md'
LONG_DESC_TYPE = "text/markdown"
INSTALL_REQUIRES = [
]
setup(name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
license=LICENSE,
author_email=AUTHOR_EMAIL,
url=URL,
install_requires=INSTALL_REQUIRES,
packages=find_packages()
)
def __getitem__(self, group) -> EntryPoints:
return EntryPoints(ep for ep in self if ep.group == group)